Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
babel-core
Advanced tools
The babel-core package is a part of Babel, a JavaScript compiler that allows developers to use next-generation JavaScript, today. It transforms ES6, ES7, and beyond into backwards compatible versions of JavaScript that can be run on older browsers and environments. It also allows for the use of JSX, Flow, TypeScript, and other features not natively supported in all environments.
Code Transformation
Transforms ES6/ES7 code to ES5. This is useful for compatibility with older browsers and environments.
babel.transform('code();', options);
File Transformation
Synchronously transforms the entire contents of a file. Useful for build processes.
babel.transformFileSync('filename.js', options);
AST Generation
Parses code to its Abstract Syntax Tree (AST) representation, which can be used for analysis or modification of the code.
babel.parse('code();', options);
Plugin/Preset Application
Applies Babel plugins and presets to the code, allowing for custom transformations and feature sets.
babel.transform('code();', { plugins: ['plugin-name'], presets: ['preset-name'] });
TypeScript is a superset of JavaScript that compiles to plain JavaScript. It offers type checking and is aimed at the development of large applications. It is similar to Babel in that it processes modern JavaScript features, but it also introduces its own syntax and type system.
Esbuild is an extremely fast JavaScript bundler and minifier. It also transpiles code, similar to Babel, but it focuses on build performance and speed, often outperforming Babel in these aspects.
SWC is a super-fast compiler written in Rust that functions similarly to Babel. It focuses on speed and also offers minification. SWC can be a drop-in replacement for Babel in many cases, offering faster build times.
If you look around in the various directories in here you'll find some details about the organization of the Babel codebase.
FAQs
Babel compiler core.
The npm package babel-core receives a total of 7,020,765 weekly downloads. As such, babel-core popularity was classified as popular.
We found that babel-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.